home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / src / m / amdahl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-28  |  4.5 KB  |  148 lines

  1. /* amdahl machine description file 
  2.    Copyright (C) 1987 Free Software Foundation, Inc.
  3.  
  4. This file is part of GNU Emacs.
  5.  
  6. GNU Emacs is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. GNU Emacs is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with GNU Emacs; see the file COPYING.  If not, write to
  18. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. /* Synched up with: FSF 19.29. */
  21.  
  22. /*
  23. This file for amdahl_uts created by modifying the template.h
  24. by Jishnu Mukerji 3/1/87
  25.  
  26. The following line tells the configuration script what sort of
  27. operating system this machine is likely to run.
  28. USUAL-OPSYS="usg5-2-2"
  29.  
  30. This file works with the Amdahl uts native C compiler. The 5.2u370
  31. compiler is so brain damaged that it is not even worth trying to use it.
  32. */
  33.  
  34. /* Define WORD_MACHINE if addresses and such have
  35.  * to be corrected before they can be used as byte counts.  */
  36.  
  37. #define WORD_MACHINE /* not actually used anywhere yet! */
  38.  
  39. /* Now define a symbol for the cpu type, if your compiler
  40.    does not define it automatically:
  41.    vax, m68000, ns16000, pyramid, orion, tahoe and APOLLO
  42.    are the ones defined so far.  */
  43.  
  44. /* uts gets defined automatically */
  45. /* However for clarity define amdahl_uts */
  46. #define amdahl_uts
  47.  
  48. /* Use type int rather than a union, to represent Lisp_Object */
  49. /* This is desirable for most machines.  */
  50.  
  51. #define NO_UNION_TYPE
  52.  
  53. /* Define EXPLICIT_SIGN_EXTEND if XINT must explicitly sign-extend
  54.    the bit field into an int.  In other words, if bit fields
  55.    are always unsigned.
  56.  
  57.    If you use NO_UNION_TYPE, this flag does not matter.  */
  58.  
  59. #define EXPLICIT_SIGN_EXTEND
  60.  
  61. /* Data type of load average, as read out of kmem.  */
  62.  
  63. /* #define LOAD_AVE_TYPE long*/
  64.  
  65. /* Convert that into an integer that is 100 for a load average of 1.0  */
  66.  
  67. /*#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0)*/
  68.  
  69. /* Define CANNOT_DUMP on machines where unexec does not work.
  70.    Then the function dump-emacs will not be defined
  71.    and temacs will do (load "loadup") automatically unless told otherwise.  */
  72.  
  73. /* #define CANNOT_DUMP
  74.  
  75. /* Define VIRT_ADDR_VARIES if the virtual addresses of
  76.    pure and impure space as loaded can vary, and even their
  77.    relative order cannot be relied on.
  78.  
  79.    Otherwise Emacs assumes that text space precedes data space,
  80.    numerically.  */
  81.  
  82. /* #define VIRT_ADDR_VARIES*/
  83.  
  84. /* Define C_ALLOCA if this machine does not support a true alloca
  85.    and the one written in C should be used instead.
  86.    Define HAVE_ALLOCA to say that the system provides a properly
  87.    working alloca function and it should be used.
  88.    Define neither one if an assembler-language alloca
  89.    in the file alloca.s should be used.  */
  90.  
  91. #define C_ALLOCA
  92. /*#define HAVE_ALLOCA */
  93.  
  94. #ifdef HAVE_ALLOCA
  95. #define LIB_STANDARD -lPW -lc
  96. #endif
  97.  
  98. /* Define NO_REMAP if memory segmentation makes it not work well
  99.    to change the boundary between the text section and data section
  100.    when Emacs is dumped.  If you define this, the preloaded Lisp
  101.    code will not be sharable; but that's better than failing completely.  */
  102.  
  103. /*#define NO_REMAP*/
  104.  
  105. #define TERMINFO
  106.  
  107. /* The usual definition of XINT, which involves shifting, does not
  108.    sign-extend properly on this machine.  */
  109.  
  110. #define XINT(i) (((sign_extend_temp=(i)) & 0x00800000) \
  111.          ? (sign_extend_temp | 0xFF000000) \
  112.          : (sign_extend_temp & 0x00FFFFFF))
  113.  
  114. #ifdef emacs /* Don't do this when making xmakefile! */
  115. extern int sign_extend_temp;
  116. #endif
  117.  
  118. /* The following needed to load the proper crt0.o and to get the
  119.    proper declaration of data_start in the #undef NO_REMAP case */
  120.  
  121. #ifndef NO_REMAP
  122. #define START_FILES pre-crt0.o /lib/crt0.o
  123. #endif
  124.  
  125. /* Perhaps this means that the optimizer isn't safe to use.  */
  126.  
  127. #define C_OPTIMIZE_SWITCH
  128.  
  129. /* Put text and data on non-segment boundary; makes image smaller */
  130.  
  131. #define LD_SWITCH_MACHINE    -N 
  132.  
  133. /* When writing the 'xemacs' file, make text segment ro */
  134. #define EXEC_MAGIC    0410
  135.  
  136. /* Mask for address bits within a memory segment */
  137. #define SEGSIZ 0x10000        /* Should this not be defined elsewhere ? */
  138. #define SEGMENT_MASK (SEGSIZ - 1)
  139.  
  140. /* Tell alloca.c which direction stack grows.  */
  141. #define STACK_DIRECTION -1
  142.  
  143. /* Compensate for error in signal.h.  */
  144. #if NSIG==19
  145. #undef NSIG
  146. #define NSIG 20
  147. #endif
  148.